Connect any AI agent to live and historical Polymarket prediction-market orderbook data — BTC/ETH/SOL/XRP across 5m, 15m, 1h, and 1d timeframes — plus Hyperliquid perpetual orderbooks. 13 tools for listing markets, fetching live orderbooks, querying time-series snapshots, and aggregated market summaries. Use the hosted endpoint with your API key, or self-host via npm.
概要
Resolved Markets MCP Server
MCP server for Resolved Markets — connect Claude, GPT, or any AI agent to live and historical Polymarket prediction-market orderbook data, plus Hyperliquid perpetual orderbooks.
What you get
- Crypto prediction markets — BTC, ETH, SOL, XRP across 5m / 15m / 1h / 1d timeframes
- Live orderbooks — bid/ask arrays, spread, depth, by conditionId or slug
- Historical time-series — paginated snapshots captured at ~20Hz for spread/depth analysis
- Hyperliquid perps — live and historical perp orderbooks (Pro tier+)
- Market discovery — categories, live markets, and closed/past markets
Quick start (hosted — recommended)
Get an API key at resolvedmarkets.com/api-keys, then add:
{
"mcpServers": {
"resolvedmarkets": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"https://mcp.resolvedmarkets.com/mcp",
"--header", "X-API-Key: rm_your_api_key_here"
]
}
}
}
Your tier and quota attach to your own key (free = BTC only + 24h history + 60 rpm; Pro = all crypto + Hyperliquid + 500 rpm; Enterprise = everything + 3000 rpm).
Self-hosted (npm)
{
"mcpServers": {
"resolvedmarkets": {
"command": "npx",
"args": ["-y", "@elcara-hq/resolvedmarkets-mcp"],
"env": {
"HF_API_URL": "https://api.resolvedmarkets.com",
"HF_API_KEY": "rm_your_api_key_here"
}
}
}
}
Tools
| Tool | Description |
|---|---|
list_categories | Discover tracked categories with market counts |
list_markets | List live markets, optionally filtered by category |
list_historical_markets | List closed/past markets (recent or full) |
get_market | Resolve a market by slug into conditionId + metadata |
get_orderbook | Live orderbook by conditionId or slug |
get_market_summary | 7-day aggregated stats (price range, spreads) |
get_snapshot | Historical orderbook state at a timestamp |
get_latest_snapshots | The 5 most recent snapshots (freshness check) |
query_snapshots | Paginated time-series of snapshots (core analysis tool) |
get_exchange_orderbook | Live Hyperliquid perp orderbook (Pro+) |
get_exchange_snapshots | Historical Hyperliquid perp snapshots (Pro+) |
get_system_stats | System-wide stats (live markets, throughput, prices) |
Resources
| URI | Description |
|---|---|
markets://live | Currently active markets with token IDs and metadata |
prices://latest | Current crypto prices and dataset/exchange stats |
Example queries
- "What BTC prediction markets are live right now?"
- "Show me the live orderbook for
btc-updown-5m" - "Pull the last 500 snapshots for that market and analyze the spread trend"
- "Compare the Polymarket BTC price to the Hyperliquid BTC perp"
Links
サーバー設定
{
"mcpServers": {
"resolvedmarkets": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.resolvedmarkets.com/mcp",
"--header",
"X-API-Key: rm_your_api_key_here"
]
}
}
}